Feat/tsemach/add commands for manifest management#110
Closed
Feat/tsemach/add commands for manifest management#110
Conversation
added 11 commits
February 13, 2024 15:15
# Conflicts: # yarn.lock
# Conflicts: # yarn.lock
gregra81
reviewed
Dec 23, 2024
Collaborator
gregra81
left a comment
There was a problem hiding this comment.
Looks amazing 🚀
See my comments please
| return userChoice === CREATE_NEW_VERSION; | ||
| }; | ||
|
|
||
| export const uploadZippedManifest = async ( |
Collaborator
There was a problem hiding this comment.
same question about zip VS normal file
Contributor
Author
There was a problem hiding this comment.
The manifest endpoints support only zip format (in oder to support in feature dependencies and assets such as images etc...)
…porting-app-manifest # Conflicts: # package.json # src/consts/urls.ts
* Feat: Add manifest validation to export command * Chore: Bump beta version to 4.4.0-beta.8 * fix * change to post instead put * fix comments
* support flag to allow missing variables * requested changes * bump version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Introduced two new beta commands for easier app management:
manifest:export: Export an app manifest by specifying the app ID and app version ID. The manifest ZIP file will be downloaded to your current working directory.manifest:import: Import a manifest file by providing the file path. The file will be zipped and uploaded to either an existing app or a new app, as specified.Purpose
These commands simplify app configuration management, enabling developers to easily export and import app setups for improved workflows and version control.
Notes